home *** CD-ROM | disk | FTP | other *** search
- on adjustList
- repeat with i = 561 to 583
- repeat with j = 1 to the number of lines in field i
- set thisLine to line j of field i
- repeat with k = the number of chars in thisLine down to 1
- if char k of line j of field i <> " " then
- set thisLine to chars(thisLine, 1, k)
- exit repeat
- end if
- end repeat
- put thisLine into line j of field i
- end repeat
- end repeat
- end
-
- on adjustName STARTPOINT, ENDPOINT
- repeat with i = STARTPOINT to ENDPOINT
- set thisName to the name of member i
- repeat with j = the number of chars in thisName down to 1
- if char j of thisName <> " " then
- set thisName to chars(thisName, 1, j)
- exit repeat
- end if
- end repeat
- set the name of member i to thisName
- end repeat
- end
-